body{margin: 30px 15px;
font-family: Arial, sans-serif;
background-color: rgb(209, 195, 176);
font-size: large;
}

.slider {
position: relative;
width: 100%;
height: 50vh;
overflow: hidden;
box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
}

.slides {
display: flex;
transition: transform 1s ease;
height: 100%;
}

.slide {
min-width: 100%;
height: 100%;
background-size: cover;
background-position: center;
}

.navigation {
position: absolute;
top: 50%;
width: 100%;
display: flex;
justify-content: space-between;
transform: translateY(-50%);
}

.arrow {
cursor: pointer;
background-color: rgba(0, 0, 0, 0.5);
color: #fff;
border: none;
padding: 10px;
font-size: 18px;
box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
}

.call-to-action {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
color: #131097;
font-weight: 600;
font-size: xx-large;
}

.call-to-action p {
margin: 10px;
}

.explore-button {
padding: 10px 20px;
font-size: 1.2rem;
color: #fff;
background-color: #007BFF;
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
}

.explore-button:hover {
background-color: #0056b3;
}

header {
padding: 20px;
background: linear-gradient(to right, #fcfcfc +40%, #2557df);
display: flex;
align-items: center;
box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
flex-wrap: wrap;
}

.logo img {
height: auto;
max-width: 100%;
box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
}

.header-content {
display: flex;
flex-grow: 1;
justify-content: space-between;
flex-wrap: wrap;
}
h2 {font-size: large;background-color: #7cebd8; padding: 8%;
    color: #2c075c;border-radius: 10px; box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);} 
    p {color: #1d053d; line-height: 1.8;}


    nav {
        display: flex;
        align-items: center; /* Ensures all nav items are vertically aligned */
        justify-content: center;
        background-color: #0056b3;
        padding: 10px 0;
        margin: 10px 0;
    }
    
    nav a {
        color: white;
        text-decoration: none;
        margin: 0 15px;
        padding: 10px 15px;
        font-size: 1rem;
        font-weight: 600;
        background-color: #0056b3;
        display: inline-block; /* Ensures consistent height */
        line-height: normal;
    }
    
    nav a:hover {
        background-color: #408de6;
    }

.container {
margin-top: 20px;
font-family: Arial, sans-serif;
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
background-color: #ebeac9;
}

.row-title, .column-title {
font-size: 1.5rem;
font-weight: bold;
color: #050444;
margin: 10px auto;
text-align: center;
padding: 10px;
background-color: #a9d3e0;
box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
}

.row-content, .column-container { 
display: flex;
flex-wrap: wrap;
gap: 10px;
padding: 20px;
box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);}


.item, .column {
flex: 1;
min-width: 250px;
padding: 20px;
text-align: left;
border-radius: 5px;
}

.column {
background: linear-gradient(to bottom, #e9eaf0, #a39ce4);
color: white;
font-size: large;
line-height: 1.8;
}




.footer {
font-size: small;
background: linear-gradient(to bottom, #ad96ee, #5241ebd3);
color: white;
text-align: center;
padding: 20px 10px;
position: relative;
box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
}

.footer a {
color: #FFD700;
text-decoration: none;
}

.footer a:hover {
text-decoration: underline;
}

img {
max-width: 100%;
height: auto;
}

.login-area {
display: flex;
flex-direction: column;
align-items: flex-end;
margin: 10px;
box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
}

.login-row {
display: flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
}

.login-row input[type="text"],
.login-row input[type="password"] {
width: 100%;
max-width: 200px;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
}

.login-row button {
background-color: #007BFF;
color: #ffffff;
border: none;
padding: 8px 20px;
border-radius: 4px;
cursor: pointer;
box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
}

.login-row button:hover {
background-color: #0056b3;
}

.login-links {
margin-top: 5px;
display: flex;
gap: 15px;
font-size: 0.9em;
flex-wrap: wrap;
}

.login-links a {
text-decoration: none;
color: #042e17;
}

.login-links a:hover {
text-decoration: underline;
background-color: #9fb6ce;
text-decoration-color: #fcfcfc;
}



.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #95bdd4;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(64, 31, 126, 0.2);
    z-index: 1;
}

.dropdown-content a {

    color: rgb(255, 255, 255);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #c43393;

}
.dropdown:hover .dropdown-content {
    display: block;
}